iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 1
0
自我挑戰組

霍普菜鳥的資訊工作雜記系列 第 23

D23-試試新玩意Deno

  • 分享至 

  • xImage
  •  

歷史故事和背景就先不談,直接試了就對了

安裝

Shell (Mac, Linux):

curl -fsSL https://deno.land/x/install/install.sh | sh

PowerShell (Windows):

iwr https://deno.land/x/install/install.ps1 -useb | iex

Homebrew (Mac):

brew install deno

裝完以後,會看到下面的字眼

# ######################################################################## 100.0%-#O#- #   #                                                                 ######################################################################## 100.0%
# Archive:  /Users/${USER_NAME}/.deno/bin/deno.zip
#   inflating: deno
# Deno was installed successfully to /Users/${USER_NAME}/.deno/bin/deno
# Manually add the directory to your $HOME/.bash_profile (or similar)
#   export DENO_INSTALL="/Users/${USER_NAME}/.deno"
#   export PATH="$DENO_INSTALL/bin:$PATH"
# Run '/Users/${USER_NAME}/.deno/bin/deno --help' to get started

傻傻的就直接執行,以為就安裝完成

/Users/${USER_NAME}/.deno/bin/deno --help
#這裡的${USER_NAME}是指使用的電腦本身的使用者名稱

殊不知,原來還要執行這兩個指令

#這裡的${USER_NAME}是指使用的電腦本身的使用者名稱
export DENO_INSTALL="/Users/${USER_NAME}/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"

這兩個指令執行完,就可以下

deno -V

問版本號的,熱騰騰的1.4.1
https://ithelp.ithome.com.tw/upload/images/20200924/20011616CNX1DMye93.png

馬上小試身手 可以直接用它網站給的範例執行

deno run https://deno.land/std/examples/welcome.ts

執行畫面
https://ithelp.ithome.com.tw/upload/images/20200924/20011616WdIYEm2uIC.png

或者

let message: string;
message = 'Hello Deno!!';
console.log(message);

執行指令

deno run XXX.ts
跑起來就是
https://ithelp.ithome.com.tw/upload/images/20200924/20011616zVf7Ll5rAF.png


上一篇
D22-使用koa測試網路2
下一篇
D24-試一下socket小練習
系列文
霍普菜鳥的資訊工作雜記31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言